home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 24.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  380b  |  17 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int        a=1;
  11.     char    b='Z';
  12.     float    value=1.992;
  13.     printf("This is an example\n");
  14.     printf("a is %d, b is %c\n",a,b);
  15.     printf("value is %8.2f\n",value);
  16. }
  17.